script_enemy_main
{
        let csd     = GetCurrentScriptDirectory;
	let speed = GetSpeed;
	let angle = GetAngle;
	let num = GetArgument;
	let imgEnemy;
	if(num==1)
	{
		imgEnemy=csd~"..\lib\fairy_red.png";
	}
	if(num==2)
	{
		imgEnemy=csd~"..\lib\fairy_blue.png";
	}
	let imgCircle=csd~"..\img\circle.png";
	let SelectedDifficult=GetCommonDataDefault("SELECTEDDIFFICULT","Normal");

    @Initialize {
        SetLife(500);
        SetDamageRate(100,100);
	SetTexture(imgEnemy);
	Initialize_Fairy(7);
	Tmain;
	}

    @MainLoop {
	BulletNum=GetEnemyShotCount;
	SetCollisionA(GetX(),GetY(),48);
	yield;
    }

        @DrawLoop {
		SetGraphicScale(1,1);
		SetColor(ZakoColor[0],ZakoColor[1],ZakoColor[2]);
		DrawFairy(imgEnemy);
		SetTexture(imgCircle);
		SetGraphicRect(256,256,512,512);
		SetGraphicScale(0.5,0.5);
		SetColor(ZakoMagicColor[0],ZakoMagicColor[1],ZakoMagicColor[2]);
		DrawGraphic(GetX,GetY);
	}

        @Finalize
        {
		FinalizeItemSet(3);
		alternative(GetCommonDataDefault("SELECTEDDIFFICULT","None"))
		case("Moderate")
		{

		}
		case("Extream")
		{
			if(!BeVanished)
			{
			SetCommonData("DeleteBulletNum",BulletNum);
			SetCommonData("DeleteBulletX",GetX);
			SetCommonData("DeleteBulletY",GetY);
			DeleteEnemyShotToItem(SHOT);
			}
		}
		case("Apocalypse")
		{
			if(!BeVanished)
			{
			SetCommonData("DeleteBulletNum",BulletNum);
			SetCommonData("DeleteBulletX",GetX);
			SetCommonData("DeleteBulletY",GetY);
			DeleteEnemyShotToItem(SHOT);
			}
		}
        } 

task Tmain
{
yield;
OutDamageRateZero;
AutoErazeTime(1200);
GetDamege;
MagicColor;
move;

alternative(GetCommonDataDefault("SELECTEDDIFFICULT","None"))
case("Moderate")
{
shotM;
}
case("Extream")
{
shotE;
}
case("Apocalypse")
{
shotA;
}

}


task move
{
	SetMovePosition02(GetCenterX,GetCenterY-64,240);
	wait(241);
	SetSpeed(0.45);
	SetAngle(90);
}

task shotM
{
wait(60);
loop(5)
{
let angle=GetAngleToPlayer;
let Bullet=3;
descent(let k in 0..6)
{
ascent(let i in 0..6)
{
	ascent(let j in -k..k+1)
	{
	GroundCreateShot01(GetX,GetY,8-k*0.8,angle+60*i+j*3,9,5);
	}
}
wait(5);
}
wait(60);
}
}
/////////////////////////////////////////////////////
task shotE
{
wait(60);
loop(5)
{
let angle=GetAngleToPlayer;
let Bullet=3;
descent(let k in 0..8)
{
ascent(let i in 0..8)
{
	ascent(let j in -k..k+1)
	{
	GroundCreateShot01(GetX,GetY,6-k*0.5,angle+45*i+j*2.75,9,5);
	}
}
wait(5);
}
wait(60);
}
}
/////////////////////////////////////////////////////////
task shotA
{
wait(60);
loop(5)
{
let angle=GetAngleToPlayer;
let Bullet=3;
descent(let k in 0..10)
{
ascent(let i in 0..6)
{
	ascent(let j in -k..k+1)
	{
	GroundCreateShot01(GetX,GetY,9-k*0.8,angle+60*i+j*2.75,9,5);
	}
}
wait(5);
}
wait(60);
}
}

#include_function ".\..\txt/StageEnemydata.txt"
#include_function ".\..\lib\lib_anime_fairy.txt"
}

#include_script ".\..\txt/EnemyShotData.txt"